Node Endpoint

If you already have the ID and Type of an entity in the system, you can use the node endpoint to request more data. This is useful when you have already retrieved some information and now want the full record, for example a list of contacts that just needed the names that is then linked to a full detail page:

Example

query {
  node(id: "UGVyc29uOjI=") {
    id
    ... on Contact {
      personalName {
        firstName
        lastName
      }
      emailAddress
    }
  }
}